/* ========== HEADER STYLES ========== */
header {
  background-color: #ffcdb2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #6b4f4f;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e29578;
}

nav a.active {
  color: #e29578;
  font-weight: 600;
}

nav a.active::after,
nav a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e29578;
}

/* Responsive Header */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav {
    margin-top: 1rem;
    width: 100%;
    justify-content: space-around;
    gap: 0.5rem;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }
}


/* <head>
  <link href="css/header.css" rel="stylesheet">
  <link href="css/footer.css" rel="stylesheet">
</head> */